home *** CD-ROM | disk | FTP | other *** search
/ Pascal Super Library / Pascal Super Library (CW International)(1997).bin / COMM / IBMCOM31 / INTS.INC < prev   
Text File  |  1988-12-30  |  214b  |  16 lines

  1. {Include file INTS.INC.  INLINE macros to disable and enable interrupts.}
  2.  
  3. PROCEDURE disable_interrupts;
  4. INLINE
  5.   (
  6.   $FA    {CLI}
  7.   );
  8.  
  9. PROCEDURE enable_interrupts;
  10. INLINE
  11.   (
  12.   $FB    {STI}
  13.   );
  14.  
  15.  
  16.